home *** CD-ROM | disk | FTP | other *** search
/ Macwelt 4 / Macwelt DVD 4.cdr / Entwickler / Mac-OS X / Pantomime / Source / GNUmakefile < prev    next >
Encoding:
Makefile  |  2002-04-17  |  4.5 KB  |  87 lines  |  [□□□□/□□□□]

  1. GNUmakefile°∏„d∏„dÅÅÚ#
  2. #  Makefile for libPantomime
  3. #  Copyright (C) 2001, 2002
  4. #
  5. #  Author: Ludovic Marcotte <ludovic@Sophos.ca>
  6. #
  7. #   This program is free software; you can redistribute it and/or modify
  8. #   it under the terms of the GNU General Public License as published by
  9. #   the Free Software Foundation; either version 2 of the License, or
  10. #   (at your option) any later version.
  11. #   
  12. #   This program is distributed in the hope that it will be useful,
  13. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #   GNU General Public License for more details.
  16. #   
  17. #   You should have received a copy of the GNU General Public License
  18. #   along with this program; if not, write to the Free Software
  19. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21. include $(GNUSTEP_MAKEFILES)/common.make
  22.  
  23. # The application to be compiled
  24. LIBRARY_NAME = libPantomime
  25.  
  26. # C sources files to be compiled
  27. libPantomime_C_FILES = atonum.c date_util.c getword.c len_next.c parsarpdat.c parsarpmbox.c rfc822tlen.c strfcpy.c strincmp.c striparens.c
  28.  
  29. # The Objective-C source files to be compiled
  30. libPantomime_OBJC_FILES = \
  31.   MimeUtility.m \
  32.   Message.m \
  33.   Part.m \
  34.   Parser.m \
  35.   Flags.m \
  36.   InternetAddress.m \
  37.   MimeBodyPart.m \
  38.   NSStringExtensions.m \
  39.   NSDataExtensions.m \
  40.   MimeMultipart.m \
  41.   \
  42.   LocalMessage.m \
  43.   LocalStore.m \
  44.   LocalFolder.m \
  45.   LocalFolderCacheManager.m \
  46.   \
  47.   POP3Store.m \
  48.   POP3Folder.m \
  49.   POP3Message.m \
  50.   POP3CacheObject.m \
  51.   POP3CacheManager.m \
  52.   \
  53.   IMAPStore.m \
  54.   IMAPFolder.m \
  55.   IMAPMessage.m \
  56.   IMAPCacheManager.m \
  57.   IMAPCacheObject.m \
  58.   \
  59.   Folder.m \
  60.   Sendmail.m \
  61.   SMTP.m \
  62.   TCPConnection.m \
  63.   \
  64.   Charset.m \
  65.   GSMD5.m \
  66.   ISO8859_1.m ISO8859_2.m ISO8859_3.m ISO8859_4.m ISO8859_5.m ISO8859_6.m ISO8859_7.m ISO8859_8.m ISO8859_9.m ISO8859_10.m ISO8859_11.m ISO8859_13.m ISO8859_14.m ISO8859_15.m \
  67.   UTF8.m KOI8_R.m KOI8_U.m WINDOWS_1250.m WINDOWS_1251.m WINDOWS_1252.m WINDOWS_1253.m WINDOWS_1254.m \
  68.   URLName.m
  69.  
  70. # The Objective-C headers needed when compiling
  71. libPantomime_HEADERS = Parser.h Part.h Message.h MimeMultipart.h MimeBodyPart.h Constants.h MimeUtility.h InternetAddress.h Flags.h NSStringExtensions.h NSDataExtensions.h elm_defs.h elm_lib.h parseaddrs.h Folder.h LocalMessage.h Store.h LocalStore.h LocalFolder.h LocalFolderCacheManager.h Transport.h Service.h Sendmail.h SMTP.h POP3Store.h POP3Folder.h POP3Message.h IMAPStore.h IMAPFolder.h IMAPMessage.h Charset.h ISO8859_1.h ISO8859_2.h ISO8859_3.h ISO8859_4.h ISO8859_5.h ISO8859_6.h ISO8859_7.h ISO8859_8.h ISO8859_9.h ISO8859_10.h ISO8859_11.h ISO8859_13.h ISO8859_14.h ISO8859_15.h POP3CacheObject.h POP3CacheManager.h IMAPCacheManager.h IMAPCacheObject.h TCPConnection.h GSMD5.h UTF8.h KOI8_R.h KOI8_U.h WINDOWS_1250.h WINDOWS_1251.h WINDOWS_1252.h WINDOWS_1253.h WINDOWS_1254.h URLName.h Connection.h
  72.  
  73. # The Headers that are to be installed with libPantomime
  74. libPantomime_HEADER_FILES = Parser.h Part.h Message.h MimeMultipart.h MimeBodyPart.h Constants.h MimeUtility.h InternetAddress.h Flags.h NSStringExtensions.h NSDataExtensions.h elm_defs.h elm_lib.h parseaddrs.h Folder.h LocalMessage.h Store.h LocalStore.h LocalFolder.h LocalFolderCacheManager.h Transport.h Service.h Sendmail.h SMTP.h POP3Store.h POP3Folder.h POP3Message.h IMAPStore.h IMAPFolder.h IMAPMessage.h Charset.h ISO8859_1.h ISO8859_2.h ISO8859_3.h ISO8859_4.h ISO8859_5.h ISO8859_6.h ISO8859_7.h ISO8859_8.h ISO8859_9.h ISO8859_10.h ISO8859_11.h ISO8859_13.h ISO8859_14.h ISO8859_15.h POP3CacheObject.h POP3CacheManager.h IMAPCacheManager.h IMAPCacheObject.h TCPConnection.h GSMD5.h UTF8.h KOI8_R.h KOI8_U.h WINDOWS_1250.h WINDOWS_1251.h WINDOWS_1252.h WINDOWS_1253.h WINDOWS_1254.h URLName.h Connection.h
  75.  
  76. libPantomime_HEADER_FILES_DIR = ../Headers/Pantomime
  77.  
  78. libPantomime_HEADER_FILES_INSTALL_DIR = /Pantomime
  79.  
  80. ADDITIONAL_INCLUDE_DIRS = -I../Headers
  81.  
  82. ADDITIONAL_OBJCFLAGS = -DHAVE_ICONV -Wall
  83.  
  84. include $(GNUSTEP_MAKEFILES)/library.make
  85.  
  86.  
  87. This resource fork intentionally left blank   ˇˇ